home *** CD-ROM | disk | FTP | other *** search
- /* main.cpp
- *
- * This is my starting point. This simply creates my application.
- */
-
- #include "MyApp.h"
-
- /************************************************************************/
- /* */
- /* YAAF entry point */
- /* */
- /************************************************************************/
-
- /* StartApplication
- *
- * This starts up the application by creating it. For a multi-window
- * application, it's this simple.
- */
-
- XGAppCore *StartApplication(void)
- {
- return new TMyApp;
- }
-